github.com/golang/protobuf/proto.Buffer.buf (field)

30 uses

	github.com/golang/protobuf/proto (current package)
		buffer.go#L50: 	buf           []byte
		buffer.go#L58: 	return &Buffer{buf: buf}
		buffer.go#L88: 	b.buf = buf
		buffer.go#L94: 	b.buf = b.buf[:0]
		buffer.go#L100: 	return b.buf
		buffer.go#L105: 	return b.buf[b.idx:]
		buffer.go#L111: 	b.buf, err = marshalAppend(b.buf, m, b.deterministic)
		buffer.go#L120: 	b.idx = len(b.buf)
		buffer.go#L141: 	b.buf = protowire.AppendVarint(b.buf, v)
		buffer.go#L157: 	b.buf = protowire.AppendFixed32(b.buf, uint32(v))
		buffer.go#L163: 	b.buf = protowire.AppendFixed64(b.buf, uint64(v))
		buffer.go#L169: 	b.buf = protowire.AppendBytes(b.buf, v)
		buffer.go#L176: 	b.buf = protowire.AppendString(b.buf, v)
		buffer.go#L183: 	b.buf = protowire.AppendVarint(b.buf, uint64(Size(m)))
		buffer.go#L184: 	b.buf, err = marshalAppend(b.buf, m, b.deterministic)
		buffer.go#L190: 	v, n := protowire.ConsumeVarint(b.buf[b.idx:])
		buffer.go#L218: 	v, n := protowire.ConsumeFixed32(b.buf[b.idx:])
		buffer.go#L228: 	v, n := protowire.ConsumeFixed64(b.buf[b.idx:])
		buffer.go#L240: 	v, n := protowire.ConsumeBytes(b.buf[b.idx:])
		buffer.go#L254: 	v, n := protowire.ConsumeString(b.buf[b.idx:])
		buffer.go#L277: 	v, n, err := consumeGroup(b.buf[b.idx:])